/* orders-refresh.css */

.refresh-spinner {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 10px;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.spinner-circle {
  width: 24px;
  height: 24px;
  border: 3px solid var(--primaryDark);
  border-top: 3px solid var(--light1);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
